func golang.org/x/tools/internal/versions.cmpInt

6 uses

	golang.org/x/tools/internal/versions (current package)
		gover.go#L35: 	if c := cmpInt(vx.major, vy.major); c != 0 {
		gover.go#L38: 	if c := cmpInt(vx.minor, vy.minor); c != 0 {
		gover.go#L41: 	if c := cmpInt(vx.patch, vy.patch); c != 0 {
		gover.go#L47: 	if c := cmpInt(vx.pre, vy.pre); c != 0 {
		gover.go#L98: 		if cmpInt(v.minor, "21") < 0 {
		gover.go#L157: func cmpInt(x, y string) int {